Fixing AWS Timestream query
My 'ago' function had been failing with "The query syntax is invalid" error on the following clause:
time BETWEEN ago(24h5m) AND ago(24h) AND
I fixed it by changing converting the hours to minutes:
time BETWEEN ago(1445m) AND ago(1440m) AND